home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / ScrollDir / DirWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-08  |  1.4 KB  |  48 lines

  1. //=============================================================================
  2. //
  3. //        Copyright (C) 1995 by Paul S. McCarthy and Eric Sunshine.
  4. //                Written by Paul S. McCarthy and Eric Sunshine.
  5. //                            All Rights Reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //        This object is included in the MiscKit by permission from the authors
  10. //        and its use is governed by the MiscKit license, found in the file
  11. //        "License.rtf" in the MiscKit distribution.    Please refer to that file
  12. //        for a list of all applicable permissions and restrictions.
  13. //
  14. //=============================================================================
  15. //-----------------------------------------------------------------------------
  16. // DirWindow.h
  17. //
  18. //        Manages window which displays directory listing.
  19. //
  20. //-----------------------------------------------------------------------------
  21. //-----------------------------------------------------------------------------
  22. // $Id$
  23. // $Log$
  24. //-----------------------------------------------------------------------------
  25. #import <appkit/appkit.h>
  26.  
  27. @class MiscTableScroll;
  28.  
  29. @interface DirWindow:Object
  30.     {
  31.     MiscTableScroll*    scroll;
  32.     Window*                window;
  33.     Button*                autoSortSwitch;
  34.     Button*                cdButton;
  35.     Button*                hiddenFilesSwitch;
  36.     Button*                highlightSwitch;
  37.     Button*                updateButton;
  38.     TextField*            countField;
  39.     char*                path;
  40.     BOOL                autoSort;
  41.     BOOL                showHidden;
  42.     BOOL                highlightDirs;
  43.     }
  44.  
  45. + launchDir:(char const*) dirname;
  46.  
  47. @end
  48.